home *** CD-ROM | disk | FTP | other *** search
/ Private Obsession 3: Sophia / Private Obsession 3: Sophia.iso / files / cum.dxr / 00022.ls < prev    next >
Encoding:
Text File  |  1995-04-08  |  505 b   |  22 lines

  1. on startMovie
  2.   set the soundLevel to 7
  3.   updateStage()
  4. end
  5.  
  6. on setvolume
  7.   global where, currentvol
  8.   set where to (the mouseH - the left of sprite 6) * 1.0
  9.   set currentvol to where / the width of sprite 6 * 1.0 * 255
  10.   set the volume of sound 1 to integer(currentvol)
  11.   set the volume of sound 2 to integer(currentvol)
  12.   set the locH of sprite 17 to the mouseH + the width of cast 15
  13.   updateStage()
  14. end
  15.  
  16. on wait howlong
  17.   startTimer()
  18.   repeat while the timer < howlong
  19.     nothing()
  20.   end repeat
  21. end
  22.